home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / FavOrg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  4.1 KB  |  161 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #include "stdafx.h"
  8.  
  9. #include "FavOrg.h"
  10. #include "FavOrgHlp.h"
  11. #include "multiseltreectrl.h"
  12. #include <wininet.h>
  13. #include "favorgtreectl.h"
  14. #include "legenddlg.h"
  15.  
  16. #include "MainFrm.h"
  17. #include "FavOrgDoc.h"
  18. #include "FavOrgView.h"
  19.  
  20. #ifdef _DEBUG
  21. #define new DEBUG_NEW
  22. #undef THIS_FILE
  23. static char THIS_FILE[] = __FILE__;
  24. #endif
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CFavOrgApp
  28.  
  29. BEGIN_MESSAGE_MAP(CFavOrgApp, CWinApp)
  30.     //{{AFX_MSG_MAP(CFavOrgApp)
  31.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  32.     ON_COMMAND(IDC_FAVORGHELP, OnFavorgHelp)
  33.     //}}AFX_MSG_MAP
  34.     // Standard file based document commands
  35.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  36.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  37. END_MESSAGE_MAP()
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CFavOrgApp construction
  41.  
  42. CFavOrgApp::CFavOrgApp()
  43. {
  44.     // TODO: add construction code here,
  45.     // Place all significant initialization in InitInstance
  46. }
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // The one and only CFavOrgApp object
  50.  
  51. CFavOrgApp theApp;
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CFavOrgApp initialization
  55.  
  56. BOOL CFavOrgApp::InitInstance()
  57. {
  58.     // Standard initialization
  59.     // If you are not using these features and wish to reduce the size
  60.     //  of your final executable, you should remove from the following
  61.     //  the specific initialization routines you do not need.
  62.  
  63. #ifdef _AFXDLL
  64.     Enable3dControls();            // Call this when using MFC in a shared DLL
  65. #else
  66.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  67. #endif
  68.  
  69.     GetModuleFileName(AfxGetInstanceHandle(), m_sIniFile.GetBuffer(MAX_PATH), MAX_PATH);
  70.     m_sIniFile.ReleaseBuffer();
  71.     m_sIniFile.Delete(m_sIniFile.ReverseFind('.') + 1);
  72.     m_sIniFile += "ini";
  73.  
  74.     // Register the application's document templates.  Document templates
  75.     //  serve as the connection between documents, frame windows and views.
  76.     CSingleDocTemplate* pDocTemplate;
  77.     pDocTemplate = new CSingleDocTemplate(
  78.         IDR_MAINFRAME,
  79.         RUNTIME_CLASS(CFavOrgDoc),
  80.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  81.         RUNTIME_CLASS(CFavOrgView));
  82.     AddDocTemplate(pDocTemplate);
  83.  
  84.     // Parse command line for standard shell commands, DDE, file open
  85.     CCommandLineInfo cmdInfo;
  86.     ParseCommandLine(cmdInfo);
  87.  
  88.     // Dispatch commands specified on the command line
  89.     if (!ProcessShellCommand(cmdInfo))
  90.         return FALSE;
  91.  
  92.     // The one and only window has been initialized, so show and update it.
  93.     m_pMainWnd->ShowWindow(SW_SHOW);
  94.     m_pMainWnd->UpdateWindow();
  95.  
  96.     return TRUE;
  97. }
  98.  
  99.  
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CAboutDlg dialog used for App About
  102.  
  103. class CAboutDlg : public CDialog
  104. {
  105. public:
  106.     CAboutDlg();
  107.  
  108. // Dialog Data
  109.     //{{AFX_DATA(CAboutDlg)
  110.     enum { IDD = IDD_ABOUTBOX };
  111.     //}}AFX_DATA
  112.  
  113.     // ClassWizard generated virtual function overrides
  114.     //{{AFX_VIRTUAL(CAboutDlg)
  115.     protected:
  116.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  117.     //}}AFX_VIRTUAL
  118.  
  119. // Implementation
  120. protected:
  121.     //{{AFX_MSG(CAboutDlg)
  122.         // No message handlers
  123.     //}}AFX_MSG
  124.     DECLARE_MESSAGE_MAP()
  125. };
  126.  
  127. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  128. {
  129.     //{{AFX_DATA_INIT(CAboutDlg)
  130.     //}}AFX_DATA_INIT
  131. }
  132.  
  133. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  134. {
  135.     CDialog::DoDataExchange(pDX);
  136.     //{{AFX_DATA_MAP(CAboutDlg)
  137.     //}}AFX_DATA_MAP
  138. }
  139.  
  140. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  141.     //{{AFX_MSG_MAP(CAboutDlg)
  142.         // No message handlers
  143.     //}}AFX_MSG_MAP
  144. END_MESSAGE_MAP()
  145.  
  146. // App command to run the dialog
  147. void CFavOrgApp::OnAppAbout()
  148. {
  149.     CAboutDlg aboutDlg;
  150.     aboutDlg.DoModal();
  151. }
  152.  
  153. /////////////////////////////////////////////////////////////////////////////
  154. // CFavOrgApp message handlers
  155.  
  156.  
  157. void CFavOrgApp::OnFavorgHelp() 
  158. {
  159.     WinHelp(HIDR_MAINFRAME);    
  160. }
  161.